UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

21 lines (17 loc) 506 B
export const LLMProviderConfigKey = 'languageModel'; export const KeyVaultsConfigKey = 'keyVaults'; /** * we use this key to define default api key * equal GOOGLE_API_KEY or ZHIPU_API_KEY */ export const LLMProviderApiTokenKey = 'apiKey'; /** * we use this key to define the baseURL * equal OPENAI_PROXY_URL */ export const LLMProviderBaseUrlKey = 'baseURL'; /** * we use this key to define the custom model name * equal CUSTOM_MODELS */ export const LLMProviderModelListKey = 'enabledModels';